home *** CD-ROM | disk | FTP | other *** search
/ Yellows - Privacy (Deluxe) / Akira Gomi Photographs - Yellows: Privacy (Deluxe) - Disc 1.iso / footage / pict17.dxr / 00033.ls < prev    next >
Encoding:
Text File  |  1996-07-10  |  641 b   |  26 lines

  1. global movieshow, qtframelist, moviepos, movieprepos, pict
  2.  
  3. on mouseDown
  4.   button()
  5. end
  6.  
  7. on mouseUp
  8.   global scastname
  9.   if rollOver(clickOn()) then
  10.     if movieshow = 0 then
  11.       set movieshow to 1
  12.       set the member of sprite 24 to member (pict + getAt(qtframelist, moviepos)) of castLib scastname
  13.       set the visible of sprite 23 to 1
  14.       set the visible of sprite 24 to 1
  15.       set the visible of sprite 29 to 1
  16.       updateStage()
  17.     else
  18.       set movieshow to 0
  19.       set the visible of sprite 23 to 0
  20.       set the visible of sprite 24 to 0
  21.       set the visible of sprite 29 to 0
  22.       updateStage()
  23.     end if
  24.   end if
  25. end
  26.